home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
PROGRAM
/
SNIP0492.ARJ
/
BITCNT_1.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-09-23
|
704b
|
41 lines
/*
** Bit counter by Ratko Tomic
*/
int bit_count(long x)
{
int n = 0;
/*
** The loop will execute once for each bit of x set, this is in average
** twice as fast as the shift/test method.
*/
if (x) do
n++;
while (x = x&(x-1));
return(n);
}
#ifdef TEST
#include <stdio.h>
#include <stdlib.h>
#define plural_text(n) &"s"[(1 == (n))]
void main(int argc, char *argv[])
{
long n;
while(--argc)
{
int i;
n = atol(*++argv);
i = bit_count(n);
printf("%ld contains %d bit%s set\n",
n, i, plural_text(i));
}
}
#endif /* TEST */